7777af78a0b4eb923e889a25ae4cad012a41f2f6,source/com/intellij/facet/impl/pointers/FacetPointerImpl.java,FacetPointerImpl,getFacetType,#,132

Before Change



  @Nullable
  public FacetType<F, ?> getFacetType() {
    FacetType type = FacetTypeRegistry.getInstance().findFacetType(myFacetTypeId);
    if (type == null) {
      type = findJavaeeFacetType(myFacetTypeId);
    }
    //noinspection unchecked
    return type;
  }

After Change


  @Nullable
  public FacetType<F, ?> getFacetType() {
    //noinspection unchecked
    return FacetTypeRegistry.getInstance().findFacetType(myFacetTypeId);
  }
}